home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-09-27 | 919 b | 64 lines | [TEXT/ttxt] |
- // Floyd Take Me... By Andy O'Meara
-
-
- Resn=5,
-
- Durn="7",
-
- CamX="300 ",
- CamY="300 + 100 * cos( .15 * t )",
- CamZ="420 + 200 * cos( t * .28 ) * ( sin( t * .34 ) )^2",
-
- CmLX="1",
- CmLY="1"
- CmLZ="0",
-
- CUpX="0",
- CUpY="0",
- CUpZ="1",
-
- C4="(1-dt)^3",
- C5="(1-C4 ) * ( rnd( .3 ) + .7)",
-
- R=".09 * c4 + c5",
- G=".25 * c4 + c5",
- B=".7 * c4 + c5",
-
- A0="1.00001",
-
- BckR=".09",
- BckG=".25",
- BckB=".7",
-
- widt=380,heig=280,
-
- ConL=0,ConB=1,
-
- LWdt="3",
-
- Fall=".035",
-
-
- C0="seed( st )",
-
- C1="rnd( 6.283 )", // Initial angle
- C2="rnd( 20 ) + 100", // initial base radial distance
- C3="rnd( 150 ) + 70", // initial radial slope
-
- D0="c2 + c3 * s", // Initial radial base distance
- D1="D0 * ( .5 + 1.5/((3*(dt+.3))^2) )", // Current r
-
- D2="c1 - 32000 * D1 ^ (-2) + .2 * s", // present angle
-
-
- X="D1 * cos( d2 )",
- Y="d1 * sin( d2 )",
- Z="20 * mag( s )",
-
-
- Scal="620",
- ScSz=1,
-
- Pers="500",
-
- Vers=30